home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / pmode / qfml11 / example2.mak < prev    next >
Text File  |  1995-03-06  |  849b  |  62 lines

  1. .AUTODEPEND
  2.  
  3. #        *Translator Definitions*
  4. CC = bcc +EXAMPLE2.CFG
  5. TASM = TASM
  6. TLIB = tlib
  7. TLINK = tlink
  8. LIBPATH = C:\SYSOP\BORLANDC\LIB
  9. INCLUDEPATH = C:\SYSOP\BORLANDC\INCLUDE
  10.  
  11.  
  12. #        *Implicit Rules*
  13. .c.obj:
  14.   $(CC) -c {$< }
  15.  
  16. .cpp.obj:
  17.   $(CC) -c {$< }
  18.  
  19. #        *List Macros*
  20.  
  21.  
  22. EXE_dependencies =  \
  23.  example2.obj \
  24.  video.obj \
  25.  qfml11.obj
  26.  
  27. #        *Explicit Rules*
  28. example2.exe: example2.cfg $(EXE_dependencies)
  29.   $(TLINK) /3/v/x/c/P-/L$(LIBPATH) @&&|
  30. c0l.obj+
  31. example2.obj+
  32. video.obj+
  33. qfml11.obj
  34. example2
  35.         # no map file
  36. emu.lib+
  37. mathl.lib+
  38. cl.lib
  39. |
  40.  
  41.  
  42. #        *Individual File Dependencies*
  43. example2.obj: example2.cfg example2.cpp
  44.  
  45. #        *Compiler Configuration File*
  46. example2.cfg: example2.mak
  47.   copy &&|
  48. -ml
  49. -3
  50. -a
  51. -v
  52. -vi-
  53. -H=EXAMPLE2.SYM
  54. -wpro
  55. -weas
  56. -wpre
  57. -I$(INCLUDEPATH)
  58. -L$(LIBPATH)
  59. -P
  60. | example2.cfg
  61.  
  62.